All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.MenuItem

public interface MenuItem
extends Coding
This interface wraps the Objective-C protocol NSMenuItem *


Method Index

 o action()
A wrapper for the - action Objective-C instance method.
 o hasSubmenu()
A wrapper for the - hasSubmenu Objective-C instance method.
 o image()
A wrapper for the - image Objective-C instance method.
 o isEnabled()
A wrapper for the - isEnabled Objective-C instance method.
 o isSeparatorItem()
A wrapper for the - isSeparatorItem Objective-C instance method.
 o keyEquivalent()
A wrapper for the - keyEquivalent Objective-C instance method.
 o keyEquivalentModifierMask()
A wrapper for the - keyEquivalentModifierMask Objective-C instance method.
 o menu()
A wrapper for the - menu Objective-C instance method.
 o mixedStateImage()
A wrapper for the - mixedStateImage Objective-C instance method.
 o mnemonic()
A wrapper for the - mnemonic Objective-C instance method.
 o mnemonicLocation()
A wrapper for the - mnemonicLocation Objective-C instance method.
 o offStateImage()
A wrapper for the - offStateImage Objective-C instance method.
 o onStateImage()
A wrapper for the - onStateImage Objective-C instance method.
 o representedObject()
A wrapper for the - representedObject Objective-C instance method.
 o setAction(Selector)
A wrapper for the - setAction: Objective-C instance method.
 o setEnabled(boolean)
A wrapper for the - setEnabled: Objective-C instance method.
 o setImage(Image)
A wrapper for the - setImage: Objective-C instance method.
 o setKeyEquivalent(String)
A wrapper for the - setKeyEquivalent: Objective-C instance method.
 o setKeyEquivalentModifierMask(int)
A wrapper for the - setKeyEquivalentModifierMask: Objective-C instance method.
 o setMenu(Menu)
A wrapper for the - setMenu: Objective-C instance method.
 o setMixedStateImage(Image)
A wrapper for the - setMixedStateImage: Objective-C instance method.
 o setMnemonicLocation(int)
A wrapper for the - setMnemonicLocation: Objective-C instance method.
 o setOffStateImage(Image)
A wrapper for the - setOffStateImage: Objective-C instance method.
 o setOnStateImage(Image)
A wrapper for the - setOnStateImage: Objective-C instance method.
 o setRepresentedObject(Object)
A wrapper for the - setRepresentedObject: Objective-C instance method.
 o setState(int)
A wrapper for the - setState: Objective-C instance method.
 o setSubmenu(Menu)
A wrapper for the - setSubmenu: Objective-C instance method.
 o setTag(int)
A wrapper for the - setTag: Objective-C instance method.
 o setTarget(Object)
A wrapper for the - setTarget: Objective-C instance method.
 o setTitle(String)
A wrapper for the - setTitle: Objective-C instance method.
 o setTitleWithMnemonic(String)
A wrapper for the - setTitleWithMnemonic: Objective-C instance method.
 o state()
A wrapper for the - state Objective-C instance method.
 o submenu()
A wrapper for the - submenu Objective-C instance method.
 o tag()
A wrapper for the - tag Objective-C instance method.
 o target()
A wrapper for the - target Objective-C instance method.
 o title()
A wrapper for the - title Objective-C instance method.
 o userKeyEquivalent()
A wrapper for the - userKeyEquivalent Objective-C instance method.

Methods

 o setMenu
 public abstract void setMenu(Menu menu)
A wrapper for the - setMenu: Objective-C instance method.

 o menu
 public abstract Menu menu()
A wrapper for the - menu Objective-C instance method.

 o hasSubmenu
 public abstract boolean hasSubmenu()
A wrapper for the - hasSubmenu Objective-C instance method.

 o setSubmenu
 public abstract void setSubmenu(Menu submenu)
A wrapper for the - setSubmenu: Objective-C instance method.

 o submenu
 public abstract Menu submenu()
A wrapper for the - submenu Objective-C instance method.

 o setTitle
 public abstract void setTitle(String aString)
A wrapper for the - setTitle: Objective-C instance method.

 o title
 public abstract String title()
A wrapper for the - title Objective-C instance method.

 o isSeparatorItem
 public abstract boolean isSeparatorItem()
A wrapper for the - isSeparatorItem Objective-C instance method.

 o setKeyEquivalent
 public abstract void setKeyEquivalent(String aKeyEquivalent)
A wrapper for the - setKeyEquivalent: Objective-C instance method.

 o keyEquivalent
 public abstract String keyEquivalent()
A wrapper for the - keyEquivalent Objective-C instance method.

 o setKeyEquivalentModifierMask
 public abstract void setKeyEquivalentModifierMask(int mask)
A wrapper for the - setKeyEquivalentModifierMask: Objective-C instance method.

 o keyEquivalentModifierMask
 public abstract int keyEquivalentModifierMask()
A wrapper for the - keyEquivalentModifierMask Objective-C instance method.

 o userKeyEquivalent
 public abstract String userKeyEquivalent()
A wrapper for the - userKeyEquivalent Objective-C instance method.

 o setMnemonicLocation
 public abstract void setMnemonicLocation(int location)
A wrapper for the - setMnemonicLocation: Objective-C instance method.

 o mnemonicLocation
 public abstract int mnemonicLocation()
A wrapper for the - mnemonicLocation Objective-C instance method.

 o mnemonic
 public abstract String mnemonic()
A wrapper for the - mnemonic Objective-C instance method.

 o setTitleWithMnemonic
 public abstract void setTitleWithMnemonic(String stringWithAmpersand)
A wrapper for the - setTitleWithMnemonic: Objective-C instance method.

 o setImage
 public abstract void setImage(Image menuImage)
A wrapper for the - setImage: Objective-C instance method.

 o image
 public abstract Image image()
A wrapper for the - image Objective-C instance method.

 o setState
 public abstract void setState(int state)
A wrapper for the - setState: Objective-C instance method.

 o state
 public abstract int state()
A wrapper for the - state Objective-C instance method.

 o setOnStateImage
 public abstract void setOnStateImage(Image image)
A wrapper for the - setOnStateImage: Objective-C instance method.

 o onStateImage
 public abstract Image onStateImage()
A wrapper for the - onStateImage Objective-C instance method.

 o setOffStateImage
 public abstract void setOffStateImage(Image image)
A wrapper for the - setOffStateImage: Objective-C instance method.

 o offStateImage
 public abstract Image offStateImage()
A wrapper for the - offStateImage Objective-C instance method.

 o setMixedStateImage
 public abstract void setMixedStateImage(Image image)
A wrapper for the - setMixedStateImage: Objective-C instance method.

 o mixedStateImage
 public abstract Image mixedStateImage()
A wrapper for the - mixedStateImage Objective-C instance method.

 o setEnabled
 public abstract void setEnabled(boolean flag)
A wrapper for the - setEnabled: Objective-C instance method.

 o isEnabled
 public abstract boolean isEnabled()
A wrapper for the - isEnabled Objective-C instance method.

 o setTarget
 public abstract void setTarget(Object anObject)
A wrapper for the - setTarget: Objective-C instance method.

 o target
 public abstract Object target()
A wrapper for the - target Objective-C instance method.

 o setAction
 public abstract void setAction(Selector aSelector)
A wrapper for the - setAction: Objective-C instance method.

 o action
 public abstract Selector action()
A wrapper for the - action Objective-C instance method.

 o setTag
 public abstract void setTag(int anInt)
A wrapper for the - setTag: Objective-C instance method.

 o tag
 public abstract int tag()
A wrapper for the - tag Objective-C instance method.

 o setRepresentedObject
 public abstract void setRepresentedObject(Object anObject)
A wrapper for the - setRepresentedObject: Objective-C instance method.

 o representedObject
 public abstract Object representedObject()
A wrapper for the - representedObject Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index